home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / swingall.jar / javax / swing / GraphicsWrapper.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-07-15  |  340 b   |  19 lines

  1. package javax.swing;
  2.  
  3. import java.awt.Graphics;
  4. import java.awt.Rectangle;
  5.  
  6. interface GraphicsWrapper {
  7.    int getClipHeight();
  8.  
  9.    int getClipWidth();
  10.  
  11.    int getClipX();
  12.  
  13.    int getClipY();
  14.  
  15.    boolean isClipIntersecting(Rectangle var1);
  16.  
  17.    Graphics subGraphics();
  18. }
  19.